home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / i / imagefxv2.1a.lha / ImageFX / Rexx / AutoFX / Custom.ifx.pre < prev    next >
Text File  |  1996-03-02  |  375b  |  19 lines

  1. /*
  2.  *    Custom.ifx.pre
  3.  *    As the user to enter a command, and execute that
  4.  *    command while processing.
  5.  *
  6.  *    by Steve Tibbett
  7.  */
  8.  
  9. Options Results
  10.  
  11. Default=GetClip("ImpCustomCommand"arg(1));
  12. if (Default="") then Default="Oval 100 100 50 50"
  13.  
  14. RequestString '"Enter an ImageFX command:"' '"'Default'"'
  15. if (RC~=0) then return 10
  16.  
  17. call SetClip("ImpCustomCommand"arg(1), Result);
  18.  
  19.